home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / htmllib.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  18KB  |  623 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. '''HTML 2.0 parser.
  5.  
  6. See the HTML 2.0 specification:
  7. http://www.w3.org/hypertext/WWW/MarkUp/html-spec/html-spec_toc.html
  8. '''
  9. import sgmllib
  10. from formatter import AS_IS
  11. __all__ = [
  12.     'HTMLParser',
  13.     'HTMLParseError']
  14.  
  15. class HTMLParseError(sgmllib.SGMLParseError):
  16.     """Error raised when an HTML document can't be parsed."""
  17.     pass
  18.  
  19.  
  20. class HTMLParser(sgmllib.SGMLParser):
  21.     '''This is the basic HTML parser class.
  22.  
  23.     It supports all entity names required by the XHTML 1.0 Recommendation.
  24.     It also defines handlers for all HTML 2.0 and many HTML 3.0 and 3.2
  25.     elements.
  26.  
  27.     '''
  28.     from htmlentitydefs import entitydefs
  29.     
  30.     def __init__(self, formatter, verbose = 0):
  31.         '''Creates an instance of the HTMLParser class.
  32.  
  33.         The formatter parameter is the formatter instance associated with
  34.         the parser.
  35.  
  36.         '''
  37.         sgmllib.SGMLParser.__init__(self, verbose)
  38.         self.formatter = formatter
  39.  
  40.     
  41.     def error(self, message):
  42.         raise HTMLParseError(message)
  43.  
  44.     
  45.     def reset(self):
  46.         sgmllib.SGMLParser.reset(self)
  47.         self.savedata = None
  48.         self.isindex = 0
  49.         self.title = None
  50.         self.base = None
  51.         self.anchor = None
  52.         self.anchorlist = []
  53.         self.nofill = 0
  54.         self.list_stack = []
  55.  
  56.     
  57.     def handle_data(self, data):
  58.         if self.savedata is not None:
  59.             self.savedata = self.savedata + data
  60.         elif self.nofill:
  61.             self.formatter.add_literal_data(data)
  62.         else:
  63.             self.formatter.add_flowing_data(data)
  64.  
  65.     
  66.     def save_bgn(self):
  67.         '''Begins saving character data in a buffer instead of sending it
  68.         to the formatter object.
  69.  
  70.         Retrieve the stored data via the save_end() method.  Use of the
  71.         save_bgn() / save_end() pair may not be nested.
  72.  
  73.         '''
  74.         self.savedata = ''
  75.  
  76.     
  77.     def save_end(self):
  78.         '''Ends buffering character data and returns all data saved since
  79.         the preceding call to the save_bgn() method.
  80.  
  81.         If the nofill flag is false, whitespace is collapsed to single
  82.         spaces.  A call to this method without a preceding call to the
  83.         save_bgn() method will raise a TypeError exception.
  84.  
  85.         '''
  86.         data = self.savedata
  87.         self.savedata = None
  88.         if not self.nofill:
  89.             data = ' '.join(data.split())
  90.         
  91.         return data
  92.  
  93.     
  94.     def anchor_bgn(self, href, name, type):
  95.         '''This method is called at the start of an anchor region.
  96.  
  97.         The arguments correspond to the attributes of the <A> tag with
  98.         the same names.  The default implementation maintains a list of
  99.         hyperlinks (defined by the HREF attribute for <A> tags) within
  100.         the document.  The list of hyperlinks is available as the data
  101.         attribute anchorlist.
  102.  
  103.         '''
  104.         self.anchor = href
  105.         if self.anchor:
  106.             self.anchorlist.append(href)
  107.         
  108.  
  109.     
  110.     def anchor_end(self):
  111.         '''This method is called at the end of an anchor region.
  112.  
  113.         The default implementation adds a textual footnote marker using an
  114.         index into the list of hyperlinks created by the anchor_bgn()method.
  115.  
  116.         '''
  117.         if self.anchor:
  118.             self.handle_data('[%d]' % len(self.anchorlist))
  119.             self.anchor = None
  120.         
  121.  
  122.     
  123.     def handle_image(self, src, alt, *args):
  124.         '''This method is called to handle images.
  125.  
  126.         The default implementation simply passes the alt value to the
  127.         handle_data() method.
  128.  
  129.         '''
  130.         self.handle_data(alt)
  131.  
  132.     
  133.     def start_html(self, attrs):
  134.         pass
  135.  
  136.     
  137.     def end_html(self):
  138.         pass
  139.  
  140.     
  141.     def start_head(self, attrs):
  142.         pass
  143.  
  144.     
  145.     def end_head(self):
  146.         pass
  147.  
  148.     
  149.     def start_body(self, attrs):
  150.         pass
  151.  
  152.     
  153.     def end_body(self):
  154.         pass
  155.  
  156.     
  157.     def start_title(self, attrs):
  158.         self.save_bgn()
  159.  
  160.     
  161.     def end_title(self):
  162.         self.title = self.save_end()
  163.  
  164.     
  165.     def do_base(self, attrs):
  166.         for a, v in attrs:
  167.             if a == 'href':
  168.                 self.base = v
  169.                 continue
  170.         
  171.  
  172.     
  173.     def do_isindex(self, attrs):
  174.         self.isindex = 1
  175.  
  176.     
  177.     def do_link(self, attrs):
  178.         pass
  179.  
  180.     
  181.     def do_meta(self, attrs):
  182.         pass
  183.  
  184.     
  185.     def do_nextid(self, attrs):
  186.         pass
  187.  
  188.     
  189.     def start_h1(self, attrs):
  190.         self.formatter.end_paragraph(1)
  191.         self.formatter.push_font(('h1', 0, 1, 0))
  192.  
  193.     
  194.     def end_h1(self):
  195.         self.formatter.end_paragraph(1)
  196.         self.formatter.pop_font()
  197.  
  198.     
  199.     def start_h2(self, attrs):
  200.         self.formatter.end_paragraph(1)
  201.         self.formatter.push_font(('h2', 0, 1, 0))
  202.  
  203.     
  204.     def end_h2(self):
  205.         self.formatter.end_paragraph(1)
  206.         self.formatter.pop_font()
  207.  
  208.     
  209.     def start_h3(self, attrs):
  210.         self.formatter.end_paragraph(1)
  211.         self.formatter.push_font(('h3', 0, 1, 0))
  212.  
  213.     
  214.     def end_h3(self):
  215.         self.formatter.end_paragraph(1)
  216.         self.formatter.pop_font()
  217.  
  218.     
  219.     def start_h4(self, attrs):
  220.         self.formatter.end_paragraph(1)
  221.         self.formatter.push_font(('h4', 0, 1, 0))
  222.  
  223.     
  224.     def end_h4(self):
  225.         self.formatter.end_paragraph(1)
  226.         self.formatter.pop_font()
  227.  
  228.     
  229.     def start_h5(self, attrs):
  230.         self.formatter.end_paragraph(1)
  231.         self.formatter.push_font(('h5', 0, 1, 0))
  232.  
  233.     
  234.     def end_h5(self):
  235.         self.formatter.end_paragraph(1)
  236.         self.formatter.pop_font()
  237.  
  238.     
  239.     def start_h6(self, attrs):
  240.         self.formatter.end_paragraph(1)
  241.         self.formatter.push_font(('h6', 0, 1, 0))
  242.  
  243.     
  244.     def end_h6(self):
  245.         self.formatter.end_paragraph(1)
  246.         self.formatter.pop_font()
  247.  
  248.     
  249.     def do_p(self, attrs):
  250.         self.formatter.end_paragraph(1)
  251.  
  252.     
  253.     def start_pre(self, attrs):
  254.         self.formatter.end_paragraph(1)
  255.         self.formatter.push_font((AS_IS, AS_IS, AS_IS, 1))
  256.         self.nofill = self.nofill + 1
  257.  
  258.     
  259.     def end_pre(self):
  260.         self.formatter.end_paragraph(1)
  261.         self.formatter.pop_font()
  262.         self.nofill = max(0, self.nofill - 1)
  263.  
  264.     
  265.     def start_xmp(self, attrs):
  266.         self.start_pre(attrs)
  267.         self.setliteral('xmp')
  268.  
  269.     
  270.     def end_xmp(self):
  271.         self.end_pre()
  272.  
  273.     
  274.     def start_listing(self, attrs):
  275.         self.start_pre(attrs)
  276.         self.setliteral('listing')
  277.  
  278.     
  279.     def end_listing(self):
  280.         self.end_pre()
  281.  
  282.     
  283.     def start_address(self, attrs):
  284.         self.formatter.end_paragraph(0)
  285.         self.formatter.push_font((AS_IS, 1, AS_IS, AS_IS))
  286.  
  287.     
  288.     def end_address(self):
  289.         self.formatter.end_paragraph(0)
  290.         self.formatter.pop_font()
  291.  
  292.     
  293.     def start_blockquote(self, attrs):
  294.         self.formatter.end_paragraph(1)
  295.         self.formatter.push_margin('blockquote')
  296.  
  297.     
  298.     def end_blockquote(self):
  299.         self.formatter.end_paragraph(1)
  300.         self.formatter.pop_margin()
  301.  
  302.     
  303.     def start_ul(self, attrs):
  304.         self.formatter.end_paragraph(not (self.list_stack))
  305.         self.formatter.push_margin('ul')
  306.         self.list_stack.append([
  307.             'ul',
  308.             '*',
  309.             0])
  310.  
  311.     
  312.     def end_ul(self):
  313.         if self.list_stack:
  314.             del self.list_stack[-1]
  315.         
  316.         self.formatter.end_paragraph(not (self.list_stack))
  317.         self.formatter.pop_margin()
  318.  
  319.     
  320.     def do_li(self, attrs):
  321.         self.formatter.end_paragraph(0)
  322.         if self.list_stack:
  323.             (dummy, label, counter) = top = self.list_stack[-1]
  324.             top[2] = counter = counter + 1
  325.         else:
  326.             (label, counter) = ('*', 0)
  327.         self.formatter.add_label_data(label, counter)
  328.  
  329.     
  330.     def start_ol(self, attrs):
  331.         self.formatter.end_paragraph(not (self.list_stack))
  332.         self.formatter.push_margin('ol')
  333.         label = '1.'
  334.         for a, v in attrs:
  335.             if a == 'type':
  336.                 if len(v) == 1:
  337.                     v = v + '.'
  338.                 
  339.                 label = v
  340.                 continue
  341.         
  342.         self.list_stack.append([
  343.             'ol',
  344.             label,
  345.             0])
  346.  
  347.     
  348.     def end_ol(self):
  349.         if self.list_stack:
  350.             del self.list_stack[-1]
  351.         
  352.         self.formatter.end_paragraph(not (self.list_stack))
  353.         self.formatter.pop_margin()
  354.  
  355.     
  356.     def start_menu(self, attrs):
  357.         self.start_ul(attrs)
  358.  
  359.     
  360.     def end_menu(self):
  361.         self.end_ul()
  362.  
  363.     
  364.     def start_dir(self, attrs):
  365.         self.start_ul(attrs)
  366.  
  367.     
  368.     def end_dir(self):
  369.         self.end_ul()
  370.  
  371.     
  372.     def start_dl(self, attrs):
  373.         self.formatter.end_paragraph(1)
  374.         self.list_stack.append([
  375.             'dl',
  376.             '',
  377.             0])
  378.  
  379.     
  380.     def end_dl(self):
  381.         self.ddpop(1)
  382.         if self.list_stack:
  383.             del self.list_stack[-1]
  384.         
  385.  
  386.     
  387.     def do_dt(self, attrs):
  388.         self.ddpop()
  389.  
  390.     
  391.     def do_dd(self, attrs):
  392.         self.ddpop()
  393.         self.formatter.push_margin('dd')
  394.         self.list_stack.append([
  395.             'dd',
  396.             '',
  397.             0])
  398.  
  399.     
  400.     def ddpop(self, bl = 0):
  401.         self.formatter.end_paragraph(bl)
  402.         if self.list_stack:
  403.             if self.list_stack[-1][0] == 'dd':
  404.                 del self.list_stack[-1]
  405.                 self.formatter.pop_margin()
  406.             
  407.         
  408.  
  409.     
  410.     def start_cite(self, attrs):
  411.         self.start_i(attrs)
  412.  
  413.     
  414.     def end_cite(self):
  415.         self.end_i()
  416.  
  417.     
  418.     def start_code(self, attrs):
  419.         self.start_tt(attrs)
  420.  
  421.     
  422.     def end_code(self):
  423.         self.end_tt()
  424.  
  425.     
  426.     def start_em(self, attrs):
  427.         self.start_i(attrs)
  428.  
  429.     
  430.     def end_em(self):
  431.         self.end_i()
  432.  
  433.     
  434.     def start_kbd(self, attrs):
  435.         self.start_tt(attrs)
  436.  
  437.     
  438.     def end_kbd(self):
  439.         self.end_tt()
  440.  
  441.     
  442.     def start_samp(self, attrs):
  443.         self.start_tt(attrs)
  444.  
  445.     
  446.     def end_samp(self):
  447.         self.end_tt()
  448.  
  449.     
  450.     def start_strong(self, attrs):
  451.         self.start_b(attrs)
  452.  
  453.     
  454.     def end_strong(self):
  455.         self.end_b()
  456.  
  457.     
  458.     def start_var(self, attrs):
  459.         self.start_i(attrs)
  460.  
  461.     
  462.     def end_var(self):
  463.         self.end_i()
  464.  
  465.     
  466.     def start_i(self, attrs):
  467.         self.formatter.push_font((AS_IS, 1, AS_IS, AS_IS))
  468.  
  469.     
  470.     def end_i(self):
  471.         self.formatter.pop_font()
  472.  
  473.     
  474.     def start_b(self, attrs):
  475.         self.formatter.push_font((AS_IS, AS_IS, 1, AS_IS))
  476.  
  477.     
  478.     def end_b(self):
  479.         self.formatter.pop_font()
  480.  
  481.     
  482.     def start_tt(self, attrs):
  483.         self.formatter.push_font((AS_IS, AS_IS, AS_IS, 1))
  484.  
  485.     
  486.     def end_tt(self):
  487.         self.formatter.pop_font()
  488.  
  489.     
  490.     def start_a(self, attrs):
  491.         href = ''
  492.         name = ''
  493.         type = ''
  494.         for attrname, value in attrs:
  495.             value = value.strip()
  496.             if attrname == 'href':
  497.                 href = value
  498.             
  499.             if attrname == 'name':
  500.                 name = value
  501.             
  502.             if attrname == 'type':
  503.                 type = value.lower()
  504.                 continue
  505.         
  506.         self.anchor_bgn(href, name, type)
  507.  
  508.     
  509.     def end_a(self):
  510.         self.anchor_end()
  511.  
  512.     
  513.     def do_br(self, attrs):
  514.         self.formatter.add_line_break()
  515.  
  516.     
  517.     def do_hr(self, attrs):
  518.         self.formatter.add_hor_rule()
  519.  
  520.     
  521.     def do_img(self, attrs):
  522.         align = ''
  523.         alt = '(image)'
  524.         ismap = ''
  525.         src = ''
  526.         width = 0
  527.         height = 0
  528.         for attrname, value in attrs:
  529.             if attrname == 'align':
  530.                 align = value
  531.             
  532.             if attrname == 'alt':
  533.                 alt = value
  534.             
  535.             if attrname == 'ismap':
  536.                 ismap = value
  537.             
  538.             if attrname == 'src':
  539.                 src = value
  540.             
  541.             if attrname == 'width':
  542.                 
  543.                 try:
  544.                     width = int(value)
  545.                 except ValueError:
  546.                     pass
  547.                 except:
  548.                     None<EXCEPTION MATCH>ValueError
  549.                 
  550.  
  551.             None<EXCEPTION MATCH>ValueError
  552.             if attrname == 'height':
  553.                 
  554.                 try:
  555.                     height = int(value)
  556.                 except ValueError:
  557.                     pass
  558.                 except:
  559.                     None<EXCEPTION MATCH>ValueError
  560.                 
  561.  
  562.             None<EXCEPTION MATCH>ValueError
  563.         
  564.         self.handle_image(src, alt, ismap, align, width, height)
  565.  
  566.     
  567.     def do_plaintext(self, attrs):
  568.         self.start_pre(attrs)
  569.         self.setnomoretags()
  570.  
  571.     
  572.     def unknown_starttag(self, tag, attrs):
  573.         pass
  574.  
  575.     
  576.     def unknown_endtag(self, tag):
  577.         pass
  578.  
  579.  
  580.  
  581. def test(args = None):
  582.     import sys as sys
  583.     import formatter
  584.     if not args:
  585.         args = sys.argv[1:]
  586.     
  587.     if args:
  588.         pass
  589.     silent = args[0] == '-s'
  590.     if silent:
  591.         del args[0]
  592.     
  593.     if args:
  594.         file = args[0]
  595.     else:
  596.         file = 'test.html'
  597.     if file == '-':
  598.         f = sys.stdin
  599.     else:
  600.         
  601.         try:
  602.             f = open(file, 'r')
  603.         except IOError:
  604.             msg = None
  605.             print file, ':', msg
  606.             sys.exit(1)
  607.  
  608.     data = f.read()
  609.     if f is not sys.stdin:
  610.         f.close()
  611.     
  612.     if silent:
  613.         f = formatter.NullFormatter()
  614.     else:
  615.         f = formatter.AbstractFormatter(formatter.DumbWriter())
  616.     p = HTMLParser(f)
  617.     p.feed(data)
  618.     p.close()
  619.  
  620. if __name__ == '__main__':
  621.     test()
  622.  
  623.